scanf存到无符号数
时间: 2023-10-15 13:02:49 浏览: 108
您可以使用`%u`格式说明符将输入的值存储到无符号整数变量中。下面是一个示例代码:
```c
#include <stdio.h>
int main() {
unsigned int num;
printf("请输入一个无符号整数: ");
scanf("%u", &num);
printf("您输入的无符号整数是:%u\n", num);
return 0;
}
```
在上述代码中,我们使用`%u`将用户输入的值存储到名为`num`的无符号整数变量中,并使用`%u`格式说明符在输出时打印该变量的值。请注意,在使用`scanf`函数时,需要使用`&`运算符获取变量的地址作为参数传递给`scanf`函数。
相关问题
#include <iostream> #include <cstring> using namespace std; const int N = 1000010, M = 2000010; const int INF = 0x3f3f3f3f; int n, m, s, t; int h[N], e[M], ne[M], w[M], idx; // 邻接表存图 int dist[N]; // 存储起点到各个点的最短距离 bool st[N]; // 存储每个点的最短路是否已经确定 int cnt[N]; // 存储每个点进队的次数 int q[N]; // 手写队列 void add(int a, int b, int c){ e[idx] = b, ne[idx] = h[a], w[idx] = c, h[a] = idx ++ ; } bool spfa(){ memset(dist, 0x3f, sizeof dist); // 初始化 dist 数组,全部赋为 INF dist[s] = 0; int hh = 0, tt = 0; q[tt ++ ] = s; st[s] = true; while (hh != tt) { int t = q[hh ++ ]; if (hh == N) hh = 0; st[t] = false; for (int i = h[t]; ~i; i = ne[i]) // 遍历 t 的所有出边 { int j = e[i]; if (dist[j] > dist[t] + w[i]) // 如果从 t 点到 j 点的距离更短 { dist[j] = dist[t] + w[i]; // 更新 dist[j] cnt[j] = cnt[t] + 1; if (cnt[j] >= n) // 如果存在正环,直接返回 false return false; if (!st[j]) // 如果 j 还没在队列中 { q[tt ++ ] = j; if (tt == N) tt = 0; st[j] = true; } } } } return true; } int main(){ cin >> n >> m >> s >> t; memset(h, -1, sizeof h); while (m -- ) { int a, b, c; cin >> a >> b >> c; add(a, b, c); add(b, a, c); } if (spfa()) cout << dist[t] << endl; else puts("无解"); return 0; }用scanf代替这个代码的cin
可以使用 scanf 替换掉这段代码的 cin 部分,如下所示:
```c++
scanf("%d%d%d%d", &n, &m, &s, &t);
memset(h, -1, sizeof h);
while (m--) {
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
add(a, b, c);
add(b, a, c);
}
```
需要注意的是,scanf 与 cin 的区别在于输入格式,scanf 需要指定变量类型,并且需要使用 & 符号获取变量地址。
阅读全文