C编程:执行操作直到达到预期结果

时间:2015-09-19 03:44:09

标签: c loops repeat

我对编程很陌生,所以请帮助我。 这是我的算法:

Enter a number
If the number is greater than 26
Subtract 26 from the number 
Until the number is less than 26
Then display the final result

如何为此编写代码? 谢谢!

1 个答案:

答案 0 :(得分:1)

试试这个。但下次在制定问题时要付出一些努力

if (scanf("%d", &n) == 1) {
    while (n >= 26) {
        n -= 26;
    }
    printf("%d", n) ;
}