C编程:做一个运算,直到得到想要的结果
C Programming: Do an operation until the desired result
我真的是编程新手,所以请帮助我。
这是我的算法:
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
如何为此编写代码?
谢谢!
试试这个。但是下次在提出你的问题时一定要下点功夫
if (scanf("%d", &n) == 1) {
while (n >= 26) {
n -= 26;
}
printf("%d", n) ;
}
我真的是编程新手,所以请帮助我。 这是我的算法:
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
如何为此编写代码? 谢谢!
试试这个。但是下次在提出你的问题时一定要下点功夫
if (scanf("%d", &n) == 1) {
while (n >= 26) {
n -= 26;
}
printf("%d", n) ;
}