Sử dụng vòng lặp while để tính ( C++ ) 1+3+5+…+n 24/07/2021 Bởi Katherine Sử dụng vòng lặp while để tính ( C++ ) 1+3+5+…+n
#include <iostream> using namespace std; int main() { int n; cin >> n; int i=0; int s=0; while (i<=n){ i++; if (i % 2 !=0){ s = s+i; } } cout << s <<endl; } Bình luận
#include<bits/stdc++.h>using namespace std; int main() { int n, i = 1, res = 0; cin >> n; while (i < n) { res += i; i += 2; } cout << res;} Bình luận
#include <iostream>
using namespace std;
int main() {
int n; cin >> n; int i=0; int s=0;
while (i<=n){
i++;
if (i % 2 !=0){
s = s+i;
}
}
cout << s <<endl;
}
#include<bits/stdc++.h>
using namespace std;
int main() {
int n, i = 1, res = 0;
cin >> n;
while (i < n)
{
res += i;
i += 2;
}
cout << res;
}