我对编程很陌生,所以请帮助我。 这是我的算法:
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
如何为此编写代码? 谢谢!
答案 0 :(得分:1)
试试这个。但下次在制定问题时要付出一些努力
if (scanf("%d", &n) == 1) {
while (n >= 26) {
n -= 26;
}
printf("%d", n) ;
}